be08c70459d6d1a898540fc4a7add23ffdac5680,core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPFunction.java,PDOMCPPFunction,getFunctionBodyExecution,#IASTNode#,405
Before Change
return null;
try {
return (ICPPExecution) getLinkage().loadExecution(record + FUNCTION_BODY);
} catch (CoreException e) {
CCorePlugin.log(e);
return null;
After Change
return null;
try {
return getLinkage().loadExecution(record + FUNCTION_BODY);
} catch (CoreException e) {
CCorePlugin.log(e);
return null;